PDF Plugin for Xojo

Page.LineCapType Property (console safe)

Sets or gets the line cap type.

LineCapType as Page.LineCapTypeEnum {Read and Write}

Remarks

Line cap join type can be any of the following:



Example:


myPage.StrokeColor = &c000000
myPage.LineWidth = 7

myPage.LineCapType = Page.LineCapTypeEnum.ROUND_END

myPage.MoveTo(10,300)
myPage.LineTo(110, 300)
myPage.Draw()

See Also

Page Class